home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJTST200.ZIP / tests / libc / emu387 / nest.c < prev   
Encoding:
C/C++ Source or Header  |  1995-07-09  |  335 b   |  20 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <math.h>
  4.  
  5. double x = 3.0;
  6. double y = 7.0;
  7.  
  8. int
  9. main(int argc, char **argv)
  10. {
  11.   int i = argc > 1 ? atoi(argv[1]) : 0;
  12.   char buf[100];
  13.   if (i == 4)
  14.     return 0;
  15.   printf("nest %d %g\n", i, x / y);
  16.   sprintf(buf, "%s %d\n", argv[0], i+1);
  17.   system(buf);
  18.   return 0;
  19. }
  20.